From d91800b453840ed263b024a42e4861fb7659555d Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Tue, 25 Feb 2025 07:20:41 +0100 Subject: [PATCH] chore(i18n): Use correct plural syntax Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- src/gui/tray/usermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/usermodel.cpp b/src/gui/tray/usermodel.cpp index 6c19d7440..e6ccd45e6 100644 --- a/src/gui/tray/usermodel.cpp +++ b/src/gui/tray/usermodel.cpp @@ -174,7 +174,7 @@ void User::showDesktopNotification(const Activity &activity) void User::showDesktopNotification(const ActivityList &activityList) { - const auto subject = tr("%n notifications", nullptr, activityList.count()); + const auto subject = tr("%n notification(s)", nullptr, activityList.count()); const auto notificationId = -static_cast(qHash(subject)); if (!canShowNotification(notificationId)) { -- 2.30.2